home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-03-01 | 1.1 KB | 50 lines |
- #
- # smakefile for The Graphic SubSystem
- #
- # Modify CPU type to reflect your cpu and double click build.
- #
-
- MATH = MATH=68881
- CPU = CPU=68040
- #DEBUG = DEBUG=FULL
- OPTIMIZE = OPTIMIZE OPTLOOP OPTTIME OPTSCHED
- PARAMETERS = PARAMETERS=REGISTER
-
- FLAGS = $(MATH) $(CPU) $(DEBUG) $(OPTIMIZE) $(PARAMETERS)
-
- OBJS = control.o displaymap.o viewperstrans.o raster.o \
- rasterasm.o database.o transformation.o matrix.o display.o
-
- graphics.lib: $(OBJS)
- oml graphics.lib r $(OBJS)
-
- control.o: control.c /include/control.h
- sc $(FLAGS) control.c
-
- displaymap.o: displaymap.c /include/displaymap.h
- sc $(FLAGS) displaymap.c
-
- viewperstrans.o: viewperstrans.c /include/viewperstrans.h
- sc $(FLAGS) viewperstrans.c
-
- raster.o: raster.c /include/raster.h
- sc $(FLAGS) raster.c
-
- rasterasm.o: rasterasm.a
- asm -m0 rasterasm.a
-
- database.o: database.c /include/database.h
- sc $(FLAGS) database.c
-
- transformation.o: transformation.c /include/transformation.h
- sc $(FLAGS) transformation.c
-
- matrix.o: matrix.c /include/matrix.h
- sc $(FLAGS) matrix.c
-
- display.o: display.c /include/display.h
- sc $(FLAGS) display.c
-
-
-
-